local debris = game:GetService"Debris" local function clean(c) if c and c.Name=="CameraShake" then debris:AddItem(c, 0) end end owner.PlayerGui.ChildAdded:connect(clean) for i,v in ipairs (owner.PlayerGui:GetChildren()) do clean(v) end